home *** CD-ROM | disk | FTP | other *** search
/ Aminet 6 / Aminet 6 - June 1995.iso / Aminet / comm / bbs / logic100.lha / manual / Non-AnsiSupport.doc < prev    next >
Encoding:
Text File  |  1995-03-01  |  1.9 KB  |  59 lines

  1.                                                      Date: March, 1. 1995
  2.  
  3.  
  4.  
  5.                           LogicBBS  v1.0 BETA
  6.                           <----------------->
  7.                              LITE VERSION
  8.  
  9.                       Copyright 1995 ParCon Software
  10.  
  11.  
  12.     System/node/door/library/AIM-XIM support programmed by Michael Pendec
  13.         Filechecker/Arexxdoor support programmed by Nicholas Clarke
  14.       All Testing was done by friends. Ideas supplied by various people.
  15.  
  16.  
  17.       Read "HowToOrder.doc", if you want to get the FINAL version.
  18. -----------------------------------------------------------------------------
  19.  
  20.  
  21.  
  22.  
  23.                              PC ANSI support
  24. -----------------------------------------------------------------------------
  25.  
  26.  
  27. The PC is using a quite unique way of making ansi available to users,
  28. Without having them entering REAL ansi codes.
  29. We have supported the method in LogicBBS. Our knowledge of the way
  30. the PC converts the NON-ANSI codes, is still limited. At the current stage
  31. we have included the support for colorizing your text.
  32. Note, at each linefeed / carriage return, colors will be reset to default,
  33. when a Ansi sequence is entered. LogicBBS will strip these indicators if
  34. user selected Ansi off.
  35.  
  36. The PC uses two character indicators:->  @X  <-: which means, here comes an
  37.  ansicolor sequence. Next is a hexadecimal value of 1 byte, written as ascii.
  38.  
  39. Hexadecimal table: 0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F,10,11,...etc...
  40.  
  41.  
  42. All you need to know/learn are:
  43.  
  44. @X01   : Set pen-color 1 (Forground color)
  45.        : You can choose between 0-7 (8-F is only supported by PC)
  46.        : ie. @X00,@X01,@X02,@X03,@X04,@X05,@X06,@X07
  47.  
  48. @X12   : Set block-color 2 (background color)
  49.        : You can choose between 0-7 (8-F is only supported by PC)
  50.  
  51.  
  52. So,
  53. If you want to display your text with colors, you must edit the text like this.
  54.  
  55. @X02@X11THIS IS A TEST
  56.  
  57. Above line will be displayed with pen-color 2,block-color 1.
  58.  
  59.